ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / FlexGridBase<T> Class / OnClientUpdatedView Property






In This Topic
    OnClientUpdatedView Property (FlexGridBase<T>)
    In This Topic
    Occurs when the grid finishes creating/updating the elements that make up the current view.
    Syntax
    'Declaration
     
    
    Public Overridable Property OnClientUpdatedView As System.String
    'Usage
     
    
    Dim instance As FlexGridBase(Of T)
    Dim value As System.String
     
    instance.OnClientUpdatedView = value
     
    value = instance.OnClientUpdatedView
    public virtual System.string OnClientUpdatedView {get; set;}
    public read-write property OnClientUpdatedView: System.String; virtual; 
    public function get,set OnClientUpdatedView : System.String
    public: __property virtual System.string* get_OnClientUpdatedView();
    public: __property virtual void set_OnClientUpdatedView( 
       System.string* value
    );
    public:
    virtual property System.String^ OnClientUpdatedView {
       System.String^ get();
       void set (    System.String^ value);
    }
    Remarks
    The grid updates the view in response to several actions, including:
    • refreshing the grid or its data source,
    • adding, removing, or changing rows or columns,
    • resizing or scrolling the grid,
    • changing the selection.
    See Also